From: Richard M. Stallman Date: Thu, 11 Nov 1993 02:33:43 +0000 (+0000) Subject: (XTmouse_position): Undo roland's change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~94086 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=472895ad897123fef45db350691e22694c94c919;p=emacs.git (XTmouse_position): Undo roland's change. Fix bug in bfox change. --- diff --git a/src/xterm.c b/src/xterm.c index a5e47d2dac8..bc82f04623b 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -1776,7 +1776,7 @@ static void x_scroll_bar_report_motion (); static void XTmouse_position (f, bar_window, part, x, y, time) - FRAME_PTR f; + FRAME_PTR *f; Lisp_Object *bar_window; enum scroll_bar_part *part; Lisp_Object *x, *y; @@ -1785,7 +1785,7 @@ XTmouse_position (f, bar_window, part, x, y, time) FRAME_PTR f1; /* If this isn't an X-window frame, quit now. */ - if (!FRAME_X_P (f)) + if (!FRAME_X_P (*f)) return; BLOCK_INPUT;